home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / LocaleElements_it_IT_EURO.java < prev    next >
Text File  |  1998-10-14  |  805b  |  33 lines

  1. /*
  2.  * @(#)LocaleElements_it_IT_EURO.java    1.2 98/10/09
  3.  *
  4.  * (C) Copyright IBM Corp. 1998 - All Rights Reserved
  5.  */
  6.  
  7. /*
  8.  * EURO locale for it_IT
  9.  */
  10.  
  11. // WARNING : the format of this file will change in the future!
  12.  
  13. package java.text.resources;
  14.  
  15. import java.util.ListResourceBundle;
  16.  
  17. public class LocaleElements_it_IT_EURO extends ListResourceBundle {
  18.     /**
  19.      * Overrides ListResourceBundle
  20.      */
  21.     public Object[][] getContents() {
  22.         return new Object[][] {
  23.             { "NumberPatterns",
  24.                 new String[] {
  25.                     "#,##0.###;-#,##0.###", // decimal pattern
  26.                     "\u20AC #,##0.00;-\u20AC #,##0.00", // currency pattern
  27.                     "#,##0%" // percent pattern
  28.                 }
  29.             }
  30.         };
  31.     }
  32. }
  33.